home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxctable.c < prev    next >
C/C++ Source or Header  |  1995-09-01  |  4KB  |  141 lines

  1. /* Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxctable.c */
  20. /* Color table lookup and interpolation */
  21. #include "gx.h"
  22. #include "gxfixed.h"
  23. #include "gxfrac.h"
  24. #include "gxctable.h"
  25.  
  26. /* See gxctable.h for the API and structure definitions. */
  27.  
  28. /*
  29.  * Define an implementation that simply picks the nearest value without
  30.  * any interpolation.
  31.  */
  32. void
  33. gx_color_interpolate_nearest(const fixed *pi,
  34.   const gx_color_lookup_table *pclt, frac *pv)
  35. {    const int *pdim = pclt->dims;
  36.     int m = pclt->m;
  37.     const gs_const_string *table = pclt->table;
  38.  
  39.     if ( pclt->n > 3 )
  40.       {    table += fixed2int_var_rounded(pi[0]) * pdim[1];
  41.         ++pi, ++pdim;
  42.       }
  43.     {    int ic = fixed2int_var_rounded(pi[2]);
  44.         int ib = fixed2int_var_rounded(pi[1]);
  45.         int ia = fixed2int_var_rounded(pi[0]);
  46.         const byte *p = pclt->table[ia].data + (ib * pdim[2] + ic) * m;
  47.         int j;
  48.  
  49.         for ( j = 0; j < m; ++j, ++p )
  50.           pv[j] = byte2frac(*p);
  51.     }
  52. }
  53.  
  54. /*
  55.  * Define an implementation that uses trilinear interpolation.
  56.  */
  57. void
  58. gx_color_interpolate_linear(const fixed *pi,
  59.   const gx_color_lookup_table *pclt, frac *pv)
  60. {    const int *pdim = pclt->dims;
  61.     int m = pclt->m;
  62.  
  63.     if ( pclt->n > 3 )
  64.       {    /* Do two 3-D interpolations, */
  65.         /* and then interpolate between them. */
  66.         gx_color_lookup_table clt3;
  67.         frac vx[4];
  68.         int ix = fixed2int_var(pi[0]);
  69.         fixed fx = fixed_fraction(pi[0]);
  70.         int j;
  71.  
  72.         clt3.n = 3;
  73.         /*clt3.dims[0] = pdim[1];*/    /* not used */
  74.         clt3.dims[1] = pdim[2];
  75.         clt3.dims[2] = pdim[3];
  76.         clt3.m = m;
  77.         clt3.table = pclt->table + ix * pdim[1];
  78.         gx_color_interpolate_linear(pi + 1, &clt3, pv);
  79.         if ( ix == pdim[0] - 1 )
  80.           return;
  81.         clt3.table += pdim[1];
  82.         gx_color_interpolate_linear(pi + 1, &clt3, vx);
  83.         for ( j = 0; j < m; ++j )
  84.           pv[j] += (frac)arith_rshift((long)fx * (vx[j] - pv[j]),
  85.                           _fixed_shift);
  86.       }
  87.     else
  88.       {    int ic = fixed2int_var(pi[2]);
  89.         fixed fc = fixed_fraction(pi[2]);
  90.         uint dc1 = (ic == pdim[2] - 1 ? 0 : m);
  91.         int ib = fixed2int_var(pi[1]);
  92.         fixed fb = fixed_fraction(pi[1]);
  93.         uint db1 = (ib == pdim[1] - 1 ? 0 : pdim[2] * m);
  94.         uint dbc = (ib * pdim[2] + ic) * m;
  95.         uint dbc1 = db1 + dc1;
  96.         int ia = fixed2int_var(pi[0]);
  97.         fixed fa = fixed_fraction(pi[0]);
  98.         const byte *pa0 = pclt->table[ia].data + dbc;
  99.         const byte *pa1 =
  100.           (ia == pdim[0] - 1 ? pa0 : pclt->table[ia+1].data + dbc);
  101.         int j;
  102.  
  103.         /* The values to be interpolated are */
  104.         /* pa{0,1}[{0,db1,dc1,dbc1}]. */
  105.         for ( j = 0; j < m; ++j, ++pa0, ++pa1 )
  106.           {    frac v000 = byte2frac(pa0[0]);
  107.             frac v001 = byte2frac(pa0[dc1]);
  108.             frac v010 = byte2frac(pa0[db1]);
  109.             frac v011 = byte2frac(pa0[dbc1]);
  110.             frac v100 = byte2frac(pa1[0]);
  111.             frac v101 = byte2frac(pa1[dc1]);
  112.             frac v110 = byte2frac(pa1[db1]);
  113.             frac v111 = byte2frac(pa1[dbc1]);
  114.  
  115.             frac v00 = v000 +
  116.               (frac)arith_rshift((long)fc * (v001 - v000),
  117.                          _fixed_shift);
  118.             frac v01 = v010 +
  119.               (frac)arith_rshift((long)fc * (v011 - v010),
  120.                          _fixed_shift);
  121.             frac v10 = v100 +
  122.               (frac)arith_rshift((long)fc * (v101 - v100),
  123.                          _fixed_shift);
  124.             frac v11 = v110 +
  125.               (frac)arith_rshift((long)fc * (v111 - v110),
  126.                          _fixed_shift);
  127.  
  128.             frac v0 = v00 +
  129.               (frac)arith_rshift((long)fb * (v01 - v00),
  130.                          _fixed_shift);
  131.             frac v1 = v10 +
  132.               (frac)arith_rshift((long)fb * (v11 - v10),
  133.                          _fixed_shift);
  134.  
  135.             pv[j] = v0 +
  136.               (frac)arith_rshift((long)fa * (v1 - v0),
  137.                          _fixed_shift);
  138.           }
  139.     }
  140. }
  141.